home *** CD-ROM | disk | FTP | other *** search
- /* NAME
- * FindPowerData.rexx - Is PowerData running right now?
- *
- * SYNOPSIS
- * rx FindPowerData
- *
- * FUNCTION
- * Prints a small string to show if PowerData is currently running or
- * not.
- *
- * INPUTS
- * None
- *
- * OUTPUTS
- * 'PowerData is running', or 'PowerData is not running'
- *
- * NOTES
- *
- * SEE ALSO
- *
- * Author: Michael Berg
- * Date : 9-Mar-1993
- * This file is part of the PowerData distribution.
- */
-
- IF ~SHOW(P,'POWERDATA') THEN
- SAY 'PowerData is not running'
- ELSE
- SAY 'PowerData is running'
-
- /* The End */
-